home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / DragClick / Sources / DragClick.h < prev    next >
Text File  |  1996-06-21  |  535b  |  21 lines

  1. // =============================================================================
  2. //
  3. //    DragClick.h
  4. //    
  5. //    Author: Greg Friedman
  6. //
  7. // =============================================================================
  8.  
  9. #ifndef __DRAGCLICK__
  10. #define __DRAGCLICK__
  11.  
  12. #define kDragClickResType     'INIT'
  13. #define kDragClickResID        0
  14.  
  15. #define kFinderCreator        'MACS'
  16.  
  17. void DoDrag(Point thePt, RgnHandle selectRgn, TEHandle hTE, long ticks);
  18. pascal OSErr LocalDragInputProc(Point* mouse, short* modifiers, void* refCon, DragReference dragRef);
  19.  
  20. #endif
  21.